Drilling Into Your Twilio Billling


Drilling into your Twilio Billing is extremely easy using the Twilio PowerShell module.

Let's start by retrieving the call history

= Get-PhoneCall

Now, let's use Measure-Object to look at the average, minimum, maximum, and total price for all calls

| Measure-Object -Property Price -Sum -Average -Maximum -Minimum